home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Your Choice 3
/
Your Choice Software Collection 3.iso
/
prgmming
/
os2
/
efield.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-07
|
508b
|
21 lines
/*
Entry field. Basic support only
*/
#ifndef _EFIELD_INC
#define _EFIELD_INC
#include "control.h"
class Efield : public virtual Control
{
public:
Efield(HWND, ULONG);
Efield(HWND, ULONG, SHORT, SHORT, SHORT, SHORT,
ULONG=(ES_AUTOSCROLL | ES_MARGIN));
virtual operator char * ();
VOID SetText(char *);
VOID SetLength(ULONG);
VOID Clear();
};
#endif